Remove Method (TKey)

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes a key from the dictionary. This method must be overridden in the derived class.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public abstract bool Remove(
	TKey key
)
Visual Basic (Declaration)
Public MustOverride Function Remove ( _
	key As TKey _
) As Boolean
Visual C++
public:
virtual bool Remove (
	TKey key
) abstract

Parameters

key
TKey
Key to remove from the dictionary.

Return Value

True if the key was found, false otherwise.

See Also